home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE20
/
TIPTRIX
/
LISTING1.PAS
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1997-03-17
|
312 b
|
17 lines
class procedure TfmAbout.ShowForm(pOwner: TComponent);
begin
try
with TfmAbout.Create(pOwner) do begin
ShowModal;
Free;
end
except
ErrorMessage('Something is wrong');
end;
end;
procedure TMainForm.AboutClick(Sender: TObject);
begin
TfmAbout.ShowForm(self);
end;